reward.module.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .rewardBox {
  2. display: grid;
  3. grid-template-columns: repeat(2, 1fr);
  4. flex: 1;
  5. grid-column-gap: 5px;
  6. min-width: 0;
  7. max-width: 1.7rem;
  8. }
  9. .rewardItem {
  10. display: flex;
  11. align-items: center;
  12. }
  13. .Free {
  14. width: 40px;
  15. height: 30px;
  16. display: block;
  17. position: relative;
  18. &::after {
  19. content: "";
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. width: 100%;
  24. height: 40px;
  25. background-image: url("/deposite/free.png");
  26. background-size: 100% 100%;
  27. background-position: center center;
  28. }
  29. }
  30. .Bonus {
  31. width: 40px;
  32. height: 30px;
  33. display: block;
  34. position: relative;
  35. &::after {
  36. content: "";
  37. position: absolute;
  38. left: 0;
  39. top: 0;
  40. width: 100%;
  41. height: 40px;
  42. background-image: url("/deposite/bonus.png");
  43. background-size: 100% 100%;
  44. background-position: center center;
  45. }
  46. }
  47. .Replay {
  48. width: 40px;
  49. height: 30px;
  50. display: block;
  51. position: relative;
  52. &::after {
  53. content: "";
  54. position: absolute;
  55. left: 0;
  56. top: 0;
  57. width: 100%;
  58. height: 40px;
  59. background-image: url("/deposite/repalay.png");
  60. background-size: 100% 100%;
  61. background-position: center center;
  62. }
  63. }
  64. .Saldo {
  65. width: 40px;
  66. height: 30px;
  67. display: block;
  68. position: relative;
  69. &::after {
  70. content: "";
  71. position: absolute;
  72. left: 0;
  73. top: 0;
  74. width: 100%;
  75. height: 40px;
  76. background-image: url("/deposite/Saldo.png");
  77. background-size: 100% 100%;
  78. background-position: center center;
  79. }
  80. }